See how a minor change to your branch name style can make you a better programmer.
Format: <type>/#<issueNumber>-<alias>
| // MIT License | |
| // Copyright (c) 2023 Max Rogério | |
| // Permission is hereby granted, free of charge, to any person obtaining a copy | |
| // of this software and associated documentation files (the "Software"), to deal | |
| // in the Software without restriction, including without limitation the rights | |
| // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
| // copies of the Software, and to permit persons to whom the Software is | |
| // furnished to do so, subject to the following conditions: |
| <# 1. To patch dll in a protected folder like "c:\program files" run this script as Administrator. | |
| 2. If your Windows isn't configured to run ps1 files, you can run it from command prompt like this: | |
| powershell -ep bypass -noprofile "patch-chrome-mv2.ps1" | |
| #> | |
| param([string]$dll, [string]$dir = $pwd) | |
| function doPatch([string]$path, [string]$pathLabel = '') { | |
| $dll = $script:dll = if ($path.EndsWith('\')) { Join-Path $path chrome.dll } else { $path } | |
| if (!(Test-Path -literal $dll)) { return } | |
| $localAppData = [Environment]::GetFolderPath('LocalApplicationData') |
| // JavaScript Document | |
| // adiciona mascara para rg | |
| // Cada estado têm regras e quantidades diferentes de números no registro. Por isso, | |
| // não há uma maneira confiável de fazer a validação do mesmo. | |
| function MascaraRg(v0,errChar='?'){ | |
| const v = v0.toUpperCase().replace(/[^\dX]/g,''); | |
| return (v.length==8 || v.length==9)? | |
| v.replace(/^(\d{1,2})(\d{3})(\d{3})([\dX])$/,'$1.$2.$3-$4'): | |
| (errChar+v0) |
Most MCP servers just wrap CRUD JSON APIs into tools — I did it too with scim-mcp and garmin-mcp-app. It works, until you realize a tool call dumps 50KB+ into context.
MCP isn't dead — but we need to design MCP tools with the context window in mind.
Verified Spec-Driven Development (VSDD) is a unified software engineering methodology that fuses three proven paradigms into a single AI-orchestrated pipeline:
| #rbrahul-awesome-json{ | |
| font-size: 10pt; | |
| } | |
| .property{ | |
| color: #86AED6; | |
| } | |
| .json-literal-numeric{ | |
| color: #D6AED6; |